home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplus2.zip / RBBS.ASP < prev    next >
Text File  |  1988-01-01  |  883b  |  26 lines

  1. ;*************************************************************************
  2. ;* RBBS.ASP  (C) 1987 DATASTORM TECHNOLOGIES, INC.                       *
  3. ;*                                                                       *
  4. ;* A sample ASPECT script file for logging onto RBBS bulletin boards.    *
  5. ;*                                                                       *
  6. ;*************************************************************************
  7.  
  8. CLEAR
  9. LOCATE 0 0
  10. BOX 0 0 4 23 14
  11. ATSAY 2 2 14 "Logging onto RBBS..."
  12. LOCATE 6 0
  13.  
  14. IF NOT LINKED
  15.    DIAL "4"                  ;set to your dial dir entry for RBBS
  16. ENDIF
  17.  
  18. WAITFOR "More (Y)"           ;wait for prompt
  19. TRANSMIT "N^M"               ;send "NO"
  20.  
  21. WAITFOR "Name"               ;wait for name prompt
  22. TRANSMIT "FIRSTNAME;LASTNAME;PASSWORD^M"
  23.  
  24. ALARM 2                      ;inform user logon complete
  25.  
  26.